*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  overflow:hidden;
  background:#020202;
  font-family:'Montserrat',sans-serif;
  color:white;
  height:100vh;
}

/* BACKGROUND */

.bg{
  position:fixed;
  inset:0;

  background:
  linear-gradient(rgba(0,0,0,.9),rgba(0,0,0,.95)),
  url("../images/backdrop.png");

  background-size:cover;
  background-position:center;

  animation:bgZoom 18s ease-in-out infinite alternate;

  z-index:-10;
}

@keyframes bgZoom{

  from{
    transform:scale(1);
  }

  to{
    transform:scale(1.08);
  }

}

/* LIQUID */

.liquid{
  position:fixed;

  border-radius:50%;

  filter:blur(100px);

  opacity:.22;

  mix-blend-mode:screen;

  z-index:-8;
}

.liquid1{
  width:500px;
  height:500px;

  background:
  radial-gradient(circle,
  rgba(212,160,74,.5),
  transparent 70%);

  top:-120px;
  left:-120px;

  animation:liquidMove1 16s infinite ease-in-out;
}

.liquid2{
  width:450px;
  height:450px;

  background:
  radial-gradient(circle,
  rgba(255,255,255,.12),
  transparent 70%);

  bottom:-100px;
  right:-100px;

  animation:liquidMove2 18s infinite ease-in-out;
}

@keyframes liquidMove1{

  0%,100%{
    transform:
    translate(0px,0px)
    scale(1);
  }

  50%{
    transform:
    translate(60px,-40px)
    scale(1.2);
  }

}

@keyframes liquidMove2{

  0%,100%{
    transform:
    translate(0px,0px)
    scale(1);
  }

  50%{
    transform:
    translate(-50px,30px)
    scale(1.25);
  }

}

/* PARTICLES */

#canvas{
  position:fixed;
  inset:0;
  z-index:-7;
}

/* CURSOR */

.cursor-light{
  position:fixed;

  width:450px;
  height:450px;

  border-radius:50%;

  background:
  radial-gradient(circle,
  rgba(212,160,74,.12),
  transparent 70%);

  transform:translate(-50%,-50%);

  pointer-events:none;

  mix-blend-mode:screen;

  z-index:2;
}

/* LAYOUT */

.layout{
  width:100%;
  height:100vh;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:0 5%;
}

/* LEFT */

.left{
  width:42%;
  position:relative;
  z-index:5;
}

/* TITLE */

.line{
  width:140px;
  height:2px;

  background:
  linear-gradient(to right,
  #d4a04a,
  transparent);

  margin-bottom:30px;
}

h1{
  font-size:7rem;
  line-height:.92;

  font-family:'Cinzel',serif;

  letter-spacing:4px;
}

h1 span{
  display:block;

  color:#d4a04a;

  text-shadow:
  0 0 20px rgba(212,160,74,.35),
  0 0 40px rgba(212,160,74,.2);
}

/* TEXT PANEL */

.text-panel{
  position:relative;

  margin-top:50px;

  border-radius:40px;

  overflow:hidden;

  backdrop-filter:blur(25px);

  background:
  linear-gradient(
  145deg,
  rgba(255,255,255,.06),
  rgba(255,255,255,.015));

  border:
  1px solid rgba(255,255,255,.08);

  box-shadow:
  0 0 100px rgba(212,160,74,.08);
}

.panel-glow{
  position:absolute;

  inset:-50%;

  background:
  conic-gradient(
  from 0deg,
  transparent,
  rgba(212,160,74,.15),
  transparent,
  rgba(255,255,255,.04),
  transparent);

  animation:rotateGlow 16s linear infinite;
}

@keyframes rotateGlow{

  from{
    transform:rotate(0deg);
  }

  to{
    transform:rotate(360deg);
  }

}

.glass-noise{
  position:absolute;
  inset:0;

  opacity:.05;

  background-image:
  repeating-radial-gradient(circle at center,
  rgba(255,255,255,.2) 0px,
  transparent 1px);

  background-size:4px 4px;
}

.text-inner{
  position:relative;
  z-index:5;

  padding:45px;
}

.text-inner p{
  line-height:2.2;
  color:#e6e6e6;
  margin-bottom:28px;
}

/* CARDS */

.floating-cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);

  gap:25px;

  margin-top:40px;
}

.data-card{
  position:relative;

  padding:30px;

  border-radius:30px;

  overflow:hidden;

  backdrop-filter:blur(18px);

  background:
  linear-gradient(
  145deg,
  rgba(255,255,255,.05),
  rgba(255,255,255,.015));

  border:
  1px solid rgba(255,255,255,.08);

  transition:1s;

  transform-style:preserve-3d;
}

.data-card:hover{

  transform:
  translateY(-15px)
  rotateX(12deg)
  rotateY(12deg);

  box-shadow:
  0 20px 50px rgba(212,160,74,.18);
}

.dot{
  width:18px;
  height:18px;

  border-radius:50%;

  background:#d4a04a;

  box-shadow:
  0 0 18px rgba(212,160,74,.8);

  margin-bottom:18px;
}

.data-card h3{
  color:#f0c26e;

  letter-spacing:3px;

  margin-bottom:12px;
}

.data-card span{
  line-height:1.8;
  color:#ddd;
}

/* RIGHT */

.right{
  width:52%;
  height:100vh;

  display:flex;
  justify-content:center;
  align-items:center;

  position:relative;
}

/* LOGO */

.logo-box{
  position:absolute;

  top:40px;
  right:20px;

  z-index:20;

  animation:logoFloat 5s ease-in-out infinite;
}

.logo-box img{
  width:240px;

  filter:
  drop-shadow(0 0 20px rgba(212,160,74,.35));
}

@keyframes logoFloat{

  0%,100%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-10px);
  }

}

/* VIDEO WORLD */

.video-world{
  width:92%;
  height:82vh;

  position:relative;

  display:flex;
  justify-content:center;
  align-items:center;

  perspective:1800px;
}

/* GRID RING */

.grid-ring{
  position:absolute;

  width:850px;
  height:850px;

  border-radius:50%;

  background:

  repeating-conic-gradient(
  from 0deg,
  rgba(212,160,74,.06) 0deg 4deg,
  transparent 4deg 10deg);

  animation:ringRotate 18s linear infinite;

  filter:blur(.3px);
}

@keyframes ringRotate{

  from{
    transform:rotate(0deg);
  }

  to{
    transform:rotate(360deg);
  }

}

/* DEPTH */

.depth{
  position:absolute;

  border-radius:50%;

  border:
  1px solid rgba(212,160,74,.12);
}

.depth1{
  width:650px;
  height:650px;

  animation:depthSpin 10s linear infinite;
}

.depth2{
  width:480px;
  height:480px;

  animation:depthSpin 6s linear infinite reverse;
}

@keyframes depthSpin{

  from{
    transform:rotate(0deg);
  }

  to{
    transform:rotate(360deg);
  }

}

/* VIDEO SHELL */

.video-shell{
  width:100%;
  height:100%;

  position:relative;

  overflow:hidden;

  border-radius:45px;

  background:black;

  box-shadow:

  0 0 120px rgba(0,0,0,.9),

  0 0 140px rgba(212,160,74,.08);

  transform-style:preserve-3d;
}

/* VIDEO */

.video{
  width:100%;
  height:100%;

  object-fit:cover;

  filter:
  brightness(.72)
  contrast(1.15)
  saturate(1.12);

  transform:scale(1.06);

  animation:videoMove 18s ease-in-out infinite alternate;
}

@keyframes videoMove{

  from{
    transform:
    scale(1.06)
    translateY(0px);
  }

  to{
    transform:
    scale(1.14)
    translateY(-15px);
  }

}

/* LIQUID GLASS */

.liquid-glass{
  position:absolute;
  inset:0;

  backdrop-filter:blur(1px);

  background:

  linear-gradient(
  120deg,
  rgba(255,255,255,.05),
  transparent 40%,
  rgba(255,255,255,.02));

  z-index:3;
}

/* REFLECTION */

.reflection{
  position:absolute;

  inset:0;

  background:
  linear-gradient(
  120deg,
  transparent 20%,
  rgba(255,255,255,.12),
  transparent 80%);

  transform:translateX(-100%);

  animation:reflect 8s infinite;

  z-index:4;
}

@keyframes reflect{

  from{
    transform:translateX(-100%);
  }

  to{
    transform:translateX(100%);
  }

}

/* SCAN */

.scan{
  position:absolute;

  width:100%;
  height:180px;

  background:
  linear-gradient(
  to bottom,
  transparent,
  rgba(212,160,74,.14),
  rgba(255,255,255,.04),
  transparent);

  animation:scanMove 5s linear infinite;

  z-index:5;
}

@keyframes scanMove{

  from{
    top:-200px;
  }

  to{
    top:100%;
  }

}

/* EDGE LIGHT */

.edge-light{
  position:absolute;
  inset:0;

  border-radius:45px;

  border:
  1px solid rgba(255,255,255,.08);

  box-shadow:

  inset 0 0 40px rgba(255,255,255,.04),

  inset 0 0 100px rgba(212,160,74,.04);

  z-index:6;
}

/* LIGHT BEAMS */

.beam{
  position:absolute;

  width:300px;
  height:140%;

  top:-20%;

  background:
  linear-gradient(
  to bottom,
  transparent,
  rgba(212,160,74,.08),
  transparent);

  filter:blur(30px);

  z-index:2;
}

.beam1{
  left:-40px;

  transform:rotate(12deg);

  animation:beamMove1 8s ease-in-out infinite;
}

.beam2{
  right:-40px;

  transform:rotate(-12deg);

  animation:beamMove2 10s ease-in-out infinite;
}

@keyframes beamMove1{

  0%,100%{
    transform:
    rotate(12deg)
    translateX(0px);
  }

  50%{
    transform:
    rotate(8deg)
    translateX(40px);
  }

}

@keyframes beamMove2{

  0%,100%{
    transform:
    rotate(-12deg)
    translateX(0px);
  }

  50%{
    transform:
    rotate(-8deg)
    translateX(-40px);
  }

}

/* RESPONSIVE */

@media(max-width:1100px){

  body{
    overflow:auto;
  }

  .layout{
    flex-direction:column;
    gap:80px;

    height:auto;

    padding:60px 30px;
  }

  .left,
  .right{
    width:100%;
  }

  h1{
    font-size:4.5rem;
  }

}